home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 1 / The Arsenal Files (Arsenal Computer).ISO / telecom / voixel10.lha / VOIXEL / VOIXELDA.REX < prev    next >
OS/2 REXX Batch file  |  1993-12-22  |  550b  |  22 lines

  1. /* DataScript for VoiXEL V1.00                */
  2. /* Start BBS or somewhat                    */
  3. /* This program must exit after loggoff        */
  4. /* This script will start Term and          */
  5. /* execute VoiXEL:VoiXELminiBBS.rexx        */
  6. /* Be sure that Term's settings are correct */
  7.  
  8. options results
  9.  
  10. ADDRESS COMMAND 'VoiXEL:VoiXELwaitforport -q TERM'
  11.  
  12. if RC = 0 then
  13.     do
  14.         exit        /* exit if Term already is running */
  15.                     /* Can't initialize the serial port correct then.. */
  16.     end
  17. else
  18.     do
  19.         ADDRESS COMMAND 'Term:term SYNC STARTUP VoiXEL:VoiXELminiBBS.rexx'
  20.     end
  21. exit
  22.